home *** CD-ROM | disk | FTP | other *** search
- Newsgroups: comp.lang.c
- Path: news.sprintlink.net!news1!ind-011-237-166
- From: dlmiller@iquest.net (Doug Miller)
- Subject: Re: compilers
- X-Nntp-Posting-Host: ind-009-237-116.iquest.net
- Message-ID: <DoBvF6.GG5@iquest.net>
- Sender: news@iquest.net (News Admin)
- Organization: IQuest Network Services
- X-Newsreader: News Xpress Version 1.0 Beta #2.1
- References: <4iburm$aps@airdmhor.gen.nz>
- Date: Fri, 15 Mar 1996 21:25:44 GMT
-
- gumboot@airdmhor.gen.nz (Simon Hosie) wrote:
- + Does anyone know of a compiler that can take
- +
- +for (;;)
- +{
- + Stuff(1);
- + if (Cond)
- + break;
- + Stuff(2);
- +}
- +
- + and make
- +
- +goto EntryPoint;
- +do
- +{
- + Stuff(2);
- +EntryPoint:
- + Stuff(1);
- +} while (Cond);
-
- A possibly more important question is why you would want it to, since the first form is vastly
- more comprehensible.
-
-